home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-01-16 | 2.3 KB | 93 lines | [TEXT/MMCC] |
- /* mmWindowObject */
- /* Copyright © 1994 George R. Cossey */
-
- /* File name: mmWindowObject
- Function: Basic window object
-
- History: 1/16/94 Original by George Cossey
-
- */
-
- #include "mmCommonMM_Demo.h" /* Common */
- #include "CommonMM_Demo.h" /* Common */
-
-
- /* ======================================================= */
- /* ======================================================= */
-
- void CmmDisplay::Init()
- {
-
- this->ExtraDataHdl = nil; /* Not used by MM code, dedicated to user code */
- /* Expected to be overridden by the window code */
- }
-
- /* ======================================================= */
-
- void CmmWindow::Init()
- {
-
- inherited::Init();
-
- this->MultipleInstances = false; /* Default to single instance only */
- /* Expected to be overridden by the window code */
- }
-
- /* ======================================================= */
-
- void CmmWindow::Moved(Rect *OldRect,WindowPtr whichWindow)
- {
- /* Expected to be overridden by the window code */
- }
-
- /* ======================================================= */
-
- void CmmWindow::CloseExtras(Ptr theWS)
- {
- /* Cast to xxWorksheet.namexxPRec */
- /* Expected to be overridden by the window code */
- }
-
- /* ======================================================= */
-
- void CmmWindow::UpdateExtras(Ptr theWS)
- {
- /* Cast to xxWorksheet.namexxPRec */
- /* Expected to be overridden by the window code */
- }
-
- /* ======================================================= */
-
- void CmmWindow::OpenExtras(Ptr theWS)
- {
- /* Cast to xxWorksheet.namexxPRec */
- /* Expected to be overridden by the window code */
- }
-
- /* ======================================================= */
-
- void CmmWindow::ActivateExtras(Boolean Do_An_Activate,Ptr theWS)
- {
- /* Cast to xxWorksheet.namexxPRec */
- /* Expected to be overridden by the window code */
- }
-
- /* ======================================================= */
-
- void CmmWindow::HandleExtraButtons(Ptr theWS,ControlHandle theControl,short *UnHiliteValue)
- {
- /* Cast to xxWorksheet.namexxPRec */
- /* Expected to be overridden by the window code */
- }
-
- /* ======================================================= */
-
- void CmmWindow::HandleExtraCheckboxes(Ptr theWS,ControlHandle theControl)
- {
- /* Cast to xxWorksheet.namexxPRec */
- /* Expected to be overridden by the window code */
- }
-
- /* ======================================================= */
- /* ======================================================= */
-